home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / grub-installer / functions.sh next >
Text File  |  2009-09-01  |  642b  |  23 lines

  1. # Make sure mtab in the chroot reflects the currently mounted partitions.
  2. update_mtab() {
  3.     [ "$ROOT" ] || return 0
  4.  
  5.     [ ! -h /etc/mtab ] || return 0
  6.  
  7.     mtab=$ROOT/etc/mtab
  8.     grep "$ROOT" /proc/mounts | (
  9.     while read devpath mountpoint fstype options n1 n2 ; do
  10.         devpath=`mapdevfs $devpath || echo $devpath`
  11.         mountpoint=`echo $mountpoint | sed "s%^$ROOT%%"`
  12.         # The sed line removes the mount point for root.
  13.         if [ -z "$mountpoint" ] ; then
  14.             mountpoint="/"
  15.         fi
  16.         echo $devpath $mountpoint $fstype $options $n1 $n2
  17.     done ) > $mtab
  18. }
  19.  
  20. is_floppy () {
  21.     echo "$1" | grep -q '(fd' || echo "$1" | grep -q "/dev/fd" || echo "$1" | grep -q floppy
  22. }
  23.